home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD1.iso / Disk&HD / MAGICSEL.LHA / MagicSelector / Install MagicSelector < prev    next >
Encoding:
Text File  |  1994-11-07  |  3.5 KB  |  197 lines

  1. ; script to install MagicSelector 
  2.  
  3. (set Opt 7)
  4. (complete 0)
  5. (set destdir "Sys:Prefs") 
  6. (set destdir2 "Sys:WBStartup") 
  7.  
  8. (set installfiles
  9.     (askoptions
  10.         (prompt "Which of the following optional programs/helpfile should be installed ?")
  11.         (help @askoptions-help)
  12.         (choices "MagicSelector" "MagicSelector Preferences" "MagicSelector.Guide")
  13.         (default Opt)
  14.     )
  15. )
  16.  
  17. (complete 20)
  18.  
  19. ;Copy program files to destination.
  20.  
  21. (if (BITAND installfiles 1)
  22. (copyfiles
  23.     (source "WBStartup/MagicSelector")
  24.     (dest destdir2)
  25. )
  26. )
  27.  
  28. (if (BITAND installfiles 1)
  29. (copyfiles
  30.     (source "WBStartup/MagicSelector.info")
  31.     (dest destdir2)
  32. )    
  33. )
  34.  
  35.  
  36. (if (BITAND installfiles 2)
  37. (copyfiles
  38.     (source "Preferences/MagicSelector")
  39.     (dest destdir)
  40. )
  41. )
  42.  
  43. (if (BITAND installfiles 2)
  44. (copyfiles
  45.     (source "Preferences/MagicSelector.info")
  46.     (dest destdir)
  47. )    
  48. )
  49.  
  50.  
  51. (if (BITAND installfiles 4)
  52. (
  53.     (makedir ("Help:English")
  54.     )
  55.  
  56. (copyfiles
  57.     (source "Help/MagicSelector.guide")
  58.     (dest "help:english/")
  59. )
  60. )
  61. )
  62.  
  63. (if (BITAND installfiles 4)
  64. (copyfiles
  65.     (source "Help/MagicSelector.guide.info")
  66.     (dest "help:english/")
  67. )
  68. )
  69.  
  70. (complete 40)
  71. (set Opt 4)
  72.  
  73. (set installfiles
  74.     (askoptions
  75.         (prompt "Which of the following locale should be installed ?")
  76.         (help @askoptions-help)
  77.         (choices "Norsk" "Deutsch" "English (built-in)")
  78.         (default Opt)
  79.     )
  80. )
  81.  
  82. (if (BITAND installfiles 1)
  83. (copyfiles
  84.     (source "Preferences/Catalogs/Norsk/MagicSelector.Catalog")
  85.     (dest "Locale:Catalogs/Norsk/")
  86. )
  87. )
  88.  
  89. (if (BITAND installfiles 2)
  90. (copyfiles
  91.     (source "Preferences/Catalogs/Deutsch/MagicSelector.Catalog")
  92.     (dest "Locale:Catalogs/Deutsch/")
  93. )
  94. )
  95.  
  96. (set Opt 3)
  97.  
  98. (complete 60)
  99.  
  100. (set installfiles
  101.     (askoptions
  102.         (prompt "Do you want to install some Background Patterns/Sound Samples ?")
  103.         (help @askoptions-help)
  104.         (choices "Triumph Patterns" "Sound")
  105.         (default Opt)
  106.     )
  107. )
  108.  
  109. (if (BITAND installfiles 1)
  110. (
  111.      (set Patterns_dest
  112.         (tackon
  113.         (askdir
  114.         (prompt "In which disk or drawer should the Triumph Patterns be installed? (A drawer WILL be created there.)")
  115.         (help @askdir-help)
  116.         (default @default-dest)
  117.         )"Triumph Patterns")
  118.         )
  119.  
  120.         (makedir Patterns_dest (infos))
  121.  
  122.         (copyfiles
  123.             (prompt "Copying all Patterns ?")
  124.             (help @copyfiles-help)
  125.             (source "Triumph Patterns/")
  126.             (dest Patterns_dest)
  127.             (pattern "#?")
  128.             (infos)
  129.             (files)
  130.             (confirm)
  131. )
  132. )
  133. )
  134.  
  135. (complete 80)
  136.  
  137. (if (BITAND installfiles 2)
  138. (
  139.      (set Samples_dest
  140.         (tackon
  141.         (askdir
  142.         (prompt "In which disk or drawer should the Samples be installed? (A drawer WILL be created there.)")
  143.         (help @askdir-help)
  144.         (default @default-dest)
  145.         )"Samples")
  146.         )
  147.  
  148.         (makedir Samples_dest (infos))
  149.  
  150.         (copyfiles
  151.             (prompt "Copying all Samples ?")
  152.             (help @copyfiles-help)
  153.             (source "Samples/")
  154.             (dest Samples_dest)
  155.             (pattern "#?")
  156.             (infos)
  157.             (files)
  158.             (confirm)
  159. )
  160. )
  161. )
  162.  
  163. (copyfiles
  164.     (source "WBPattern.prefs")
  165.     (dest "ENVARC:SYS/")
  166. )
  167.  
  168. (copyfiles
  169.     (source "WBPattern.prefs")
  170.     (dest "ENV:SYS/")
  171. )
  172.  
  173. (copyfiles
  174.     (source "Sound.prefs")
  175.     (dest "ENVARC:SYS/")
  176. )
  177.  
  178. (copyfiles
  179.     (source "Sound.prefs")
  180.     (dest "ENV:SYS/")
  181. )
  182.  
  183. ;Correct @default-dest so that final information is correct.
  184. (set @default-dest destdir)
  185.  
  186. (complete 100)
  187.  
  188. (message "\nYou have to start up MagicSelector Preferences to\n"
  189.             "get the MagicSelector package to work at the next\n"
  190.             " reboot.\n\n"
  191.             "Do NOT try to change the WBPattern setting when\n"
  192.             "using MagicSelector it will cause double\n"
  193.             "background patterns at the Startup. Have Fun !\n")
  194.  
  195.  
  196. (exit)
  197.